home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / PG PRO⁄PG Lite Demos / PG Writer π / PG Writer.GLBL < prev    next >
Text File  |  1994-03-28  |  4KB  |  87 lines

  1. '===============================================================================
  2. '=                         Copyright 1992 Staz™ Software, Inc.                 =
  3. '=                               All rights reserved                           =
  4. '=                             "Project.GLBL" from PG:PRO                      =
  5. '===============================================================================
  6. '         DIMension your app's globals & equate your app's constants here
  7. '===============================================================================
  8. '
  9. '                         MUCKWRITE's Global variables
  10. '
  11. DIM gFixMenubar'if non-zero, then menubar
  12. :'  needs to be fixed
  13. _fixPageMessage = 1'this is a delayed message
  14. :'that tells MuckWrite that it
  15. :'needs to fix the edit field
  16. :'size of the current
  17. :'window to match the new size
  18. :'of the paper.
  19. '===============================================================================
  20. '
  21. '      DIMs and equates placed here will not be disturbed by PG PRO
  22. '
  23. '{PG1} PG PRO uses this line as a source code marker.  Do not remove it.
  24. '======================================================================
  25. '                    Window Class Reference Numbers
  26. '======================================================================
  27. _DocWnd                 = 1'Untitled 1
  28. _SplashWnd              = 2'Splash
  29. '----------------------------------------------------------------------
  30. '                     Untitled 1:Controls & Fields
  31. '----------------------------------------------------------------------
  32. _docFld                 = 8001'Text Field
  33. '----------------------------------------------------------------------
  34. '                       Splash:Controls & Fields
  35. '----------------------------------------------------------------------
  36. _picFld1class2          = 1'Pict Field
  37. '======================================================================
  38. '                       Filter & Include Globals
  39. '======================================================================
  40. '======================================================================
  41. '                             Menu Equates
  42. '======================================================================
  43. _FileMenu               = 1'== File ==
  44. _NewItem                = 1
  45. _OpenItem               = 2
  46. _CloseItem              = 3
  47. _SaveItem               = 5
  48. _SaveAsItem             = 6
  49. _PageSetupItem          = 8
  50. _PrintItem              = 9
  51. _QuitItem               = 11
  52. _EditMenu               = 2'== Edit ==
  53. _CantUndoItem           = 1
  54. _undoItem               = _cantUndoItem
  55. _CutItem                = 3
  56. _CopyItem               = 4
  57. _PasteItem              = 5
  58. _ClearItem              = 6
  59. _SelectAllItem          = 7
  60. :'== Apple Menu ==
  61. _AboutPGWriterItem      = 1
  62. _FontMenu               = 3'== Font ==
  63. _SizeMenu               = 4'== Size ==
  64. _StyleMenu              = 5'== Style ==
  65. _PlainItem              = 1
  66. _BoldItem               = 3
  67. _ItalicItem             = 4
  68. _UnderlineItem          = 5
  69. _OutlineItem            = 6
  70. _ShadowItem             = 7
  71. _CondenseItem           = 9
  72. _ExtendItem             = 10
  73. _LeftItem               = 12
  74. _CenterItem             = 13
  75. _RightItem              = 14
  76. _ColorMenu              = 6'== Color ==
  77. _redItem                = 1
  78. _greenItem              = 2
  79. _blueItem               = 3
  80. '{PG2} PG PRO uses this line as a source code marker.  Do not remove it.
  81. '
  82. '
  83. '      DIMs and equates placed here will not be disturbed by PG PRO
  84. '
  85. _wndHScroll = 8000
  86. _wndVScroll = 8001
  87.